home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Linux Cubed Series 8: LINUX Games
/
Linux Cubed Series 8 - LINUX Games.iso
/
games
/
video
/
fly8111-.000
/
fly8111-
/
fly8
/
shapes
/
smoke.vx
< prev
next >
Wrap
Text File
|
1979-12-31
|
417b
|
24 lines
/* --------------------------------- smoke.vx ------------------------------- */
/*
* This is part of the flight simulator 'fly8'.
* Author: Eyal Lebedinsky (eyal@ise.canberra.edu.au).
*
*/
/*
* Object shape: O_SMOKE.
*/
#include "shape.h"
#define S 1
static VERTEX vx_smoke[] = {
{{-S, 0, 0}, V_MOVE},
{{+S, 0, 0}, V_DRAW},
{{ 0, +S, 0}, V_DRAW},
{{-S, 0, 0}, V_DRAW},
{{ 0, 0, 0}, V_EOF}
};